home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Produtividade / OpenOffice.org 2.0.1 / openofficeorg2.cab / source.xml.xsl < prev    next >
Extensible Markup Language  |  2005-09-10  |  2KB  |  64 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--*************************************************************************
  3.  *
  4.  *  OpenOffice.org - a multi-platform office productivity suite
  5.  *
  6.  *  $RCSfile: makefile,v $
  7.  *
  8.  *  $Revision: 1.1 $
  9.  *
  10.  *  last change: $Author: st $ $Date: 2000/11/22 02:32:00 $
  11.  *
  12.  *  The Contents of this file are made available subject to
  13.  *  the terms of GNU Lesser General Public License Version 2.1.
  14.  *
  15.  *
  16.  *    GNU Lesser General Public License Version 2.1
  17.  *    =============================================
  18.  *    Copyright 2005 by Sun Microsystems, Inc.
  19.  *    901 San Antonio Road, Palo Alto, CA 94303, USA
  20.  *
  21.  *    This library is free software; you can redistribute it and/or
  22.  *    modify it under the terms of the GNU Lesser General Public
  23.  *    License version 2.1, as published by the Free Software Foundation.
  24.  *
  25.  *    This library is distributed in the hope that it will be useful,
  26.  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
  27.  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  28.  *    Lesser General Public License for more details.
  29.  *
  30.  *    You should have received a copy of the GNU Lesser General Public
  31.  *    License along with this library; if not, write to the Free Software
  32.  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  33.  *    MA  02111-1307  USA
  34.  *
  35.  ************************************************************************-->
  36. <!-- =================================
  37.   
  38.   This templates creates a source.xml file
  39.   which is identicall to the source xml tree
  40.   used for the transformation.
  41.   This is may be usefull for deveopement/debuging
  42.   of layouts.
  43.   
  44.   ==================================== -->
  45.  
  46. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  47.   xmlns:redirect="http://xml.apache.org/xalan/redirect" 
  48.   extension-element-prefixes="redirect">
  49.  
  50.    <xsl:output method="xml"/>
  51.     
  52.  
  53.    <xsl:template  match="/">
  54.              <xsl:apply-templates mode="copy"/>
  55.    </xsl:template>
  56.      
  57.    <xsl:template match="@*|node()" mode="copy">
  58.       <xsl:copy>
  59.          <xsl:apply-templates select="@*|node()" mode="copy"/>
  60.        </xsl:copy>
  61.    </xsl:template>    
  62.     
  63. </xsl:stylesheet>
  64.